home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / ab20_archive / utilities / disk / drv-1.44.lzh / mountlist < prev    next >
Text File  |  1991-07-23  |  3KB  |  121 lines

  1. df2:       Device = gcrdisk.device
  2.            Unit   = 2
  3.            Mount = 1
  4.            Flags  = 0
  5.            Surfaces  = 2
  6.            BlocksPerTrack = 19
  7.            Reserved = 2
  8.            Interleave = 0
  9.            LowCyl = 0  ;  HighCyl = 79
  10.            Buffers = 20
  11.            BufMemType = 3
  12.  
  13. #
  14. /* MountList for V1.3 */
  15.  
  16. /*  Mount Entry for the new Console Handler */
  17.  
  18. NEWCON: 
  19.     Handler = L:newCon-Handler
  20.     Priority = 5
  21.     StackSize = 1000
  22. #
  23.  
  24. /* This is an example of a non-filing system mount using a handler written
  25.    in C.
  26. */
  27.  
  28. SPEAK:     
  29.     Handler = L:Speak-Handler
  30.     Stacksize = 6000
  31.     Priority = 5
  32.     GlobVec = -1
  33. #
  34.  
  35. /*  This is an example of an alternative type of non-filing device mount,
  36.     used to mount the non-buffered serial handler
  37. */
  38.  
  39. AUX:
  40.     Handler = L:Aux-Handler
  41.     Stacksize = 1000
  42.     Priority = 5
  43. #
  44. /*  This is a non-filing system device */
  45.  
  46. PIPE:      
  47.     Handler = L:Pipe-Handler
  48.     Stacksize = 6000
  49.     Priority = 5
  50.     GlobVec = -1
  51. #
  52.  
  53. /* This is an example of a mount list entry for using the recoverable 
  54.    ram disk.  Depending on the amount of memory you wish to devote to
  55.    it, you may want to change the HighCyl value.
  56. */
  57.  
  58. RAD:       Device = ramdrive.device
  59.            Unit   = 0
  60.            Flags  = 0
  61.            Surfaces  = 2
  62.            BlocksPerTrack = 11
  63.            Reserved = 2
  64.            Interleave = 0
  65.            LowCyl = 0  ;  HighCyl = 21
  66.            Buffers = 5
  67.            BufMemType = 1
  68. #
  69.  
  70. /* An example mount entry using the fast file system with a partition
  71.    of the hard disk using the 2090 disk controller.  PREP has been
  72.    used to create the first partition (up to cylinder 20).  The second
  73.    partition is MOUNTed, using the following entry:
  74.    NOTE: Some hard disk drivers require more stack than specified here.
  75.    Some may required less.
  76.    (The hard disk is not included; this is only an example.)
  77. */
  78.  
  79. FAST:
  80.     Device = hddisk.device
  81.     FileSystem = l:FastFileSystem
  82.     Unit   = 1
  83.     Flags  = 0
  84.     Surfaces  = 4
  85.     BlocksPerTrack = 17
  86.     Reserved = 2
  87.     Interleave = 0
  88.     LowCyl = 21  ;  HighCyl = 800
  89.     Buffers = 30
  90.     GlobVec = -1
  91.     BufMemType = 1
  92.     Mount = 1
  93.     DosType = 0x444F5301
  94.     StackSize = 4000
  95. #
  96.  
  97. AUX0:
  98.           Handler = L:Aux-Handler
  99.           StackSize = 1000
  100.           Priority = 5
  101. #
  102.  
  103. AUX1:
  104.           Handler = L:Aux-Handler
  105.           StackSize = 1000
  106.           Priority = 5
  107. #
  108.  
  109. PIP:
  110.           Handler = L:ConHandler
  111.           StackSize = 600
  112.           Priority = 5
  113.           GlobVec = 5
  114. #
  115.  
  116. CND:
  117.           Handler = L:ConHandler
  118.           StackSize = 1000
  119.           GlobVec = 0
  120. #
  121.